Print the documents of function (__doc__)ΒΆ
Print the documents (syntax, description etc.) of Python built-in function(s).
Sample function :
abs()
Expected Result :
abs(number) -> number
Return the absolute value of the argument.
print(abs.__doc__)